1-877-548-3001 Sign in About Contact
Developer

GET

/api/canned_sets/{id}/items

A list of items for the given canned sets

Scope:

operator

Request Parameters

Path

2

id

required

The id of the canned set to get items from

Response

Schema

{}

payload

The canned set data

{}

canned_items

The list of canned set items

[]

{}

enabled

True if the canned set is enabled else false

2

id

The id for the canned sets

A

message

The message of the canned item

2

order

The order for the canned set

A

title

The title of the canned item

A

status

The system response status. Will be ok or error

curl

example request

1

curl -H "Authorization: Bearer {{Oauth Token}}"

2

https://developer.livehelpnow.net/api/canned_sets/{{123}}/items

example response

      
        

1

 {

2

   "payload": {

3

     "canned_items": [{

4

       "enabled"

: true,

5

       "id"

: 123456,

6

       "message"

: "First content for Categories test",

7

       "order"

: 1,

8

       "title"

: "First Node for Categories test"

9

     }],

10

  },

11

  "status": "ok"

12

 }